home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / etc / acpi / ac.d / 85-anacron.sh next >
Linux/UNIX/POSIX Shell Script  |  2008-09-02  |  698b  |  16 lines

  1. #! /bin/sh
  2.  
  3. # This script makes anacron jobs start to run when the machine is
  4. # plugged into AC power, or woken up.  For a laptop, these are the 
  5. # closest parallels to turning on a desktop.
  6.  
  7. # The /etc/init.d/anacron script now normally tries to avoid running
  8. # anacron unless on AC power, so as to avoid running down the battery.
  9. # (Things like the slocate updatedb cause a lot of IO.)  Rather than
  10. # trying to second-guess which events reflect having or not having
  11. # power, we just try to run anacron every time and let it abort if
  12. # there's no AC.  You'll see a message on the cron syslog facility 
  13. # (typically /var/log/cron) if it does run.
  14.  
  15. /usr/sbin/invoke-rc.d anacron start >/dev/null   
  16.